home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The AGA Experience 3
/
AGA Experience Volume 3 (1997)(NFA - SAdENESS)[!].iso
/
software
/
utilities
/
demos
/
stormc-demo
/
include
/
new.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-06-12
|
374 b
|
29 lines
#ifndef _INCLUDE_NEW_H
#define _INCLUDE_NEW_H
/*
** $VER: new.h 1.0 (18.1.96)
** StormC Release 1.1
**
** '(C) Copyright 1995 Haage & Partner Computer GmbH'
** All Rights Reserved
*/
#ifndef NULL
#define NULL 0
#endif
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned size_t;
void (*set_new_handler(void(*)(void)))(void);
#ifdef __cplusplus
}
#endif
#endif